Welcome![Sign In][Sign Up]
Location:
Search - simulate mouse by keyboard

Search list

[Other Embeded programuCGUI_Sim_Touch_Key

Description: 一个在 PC 机上的 uC/GUI 键盘与触摸屏模拟绿色小工具,可以使用滑鼠进行模拟与操作,所模拟操作的命令与资料亦可从串口输出给 MCU 截取使用,附上使用说名,此工具无需安装点选即可动作.-A PC, the uC/GUI keyboard with touch-screen simulation of a green gadget, you can use the mouse to simulate and operation, the simulation of the operation of the command and data can be downloaded from the serial output to the MCU interception of use, accompanied by the use of that name, this tools do not need to install can click action.
Platform: | Size: 296960 | Author: kly | Hits:

[Windows DevelopkbMos

Description: 在Windows大行其道的今天,windows界面程序受到广大用户的欢迎。对这些程序的 操作不外乎两种,键盘输入控制和鼠标输入控制。有时,对于繁杂的,或重复性的输入 操作,我们能否通过编制程序来代替手工输入,而用程序来模拟键盘及鼠标的输入呢? 答案是肯定的。这里主要是通过两个Windows API函数来实现的。 -Windows popular in today, windows interface procedures by the majority of users. The operation of these procedures only two input control keyboard and mouse input control. Sometimes, for complex or repetitive input operations, our ability to process through the development to replace the manual input, and using procedures to simulate the keyboard and mouse input it? The answer is yes. Here mainly through the two Windows API function to be achieved.
Platform: | Size: 1024 | Author: Michael | Hits:

[OpenCVCameraMouseIF

Description: 基于OpenCV的Camera Mouse interface,通过识别手势来实现模拟键盘输入,Visual Stdio 2008-The Camera Mouse interface based on OpenCV to simulate keyboard input by gesture recognition Visual Studio 2008
Platform: | Size: 959488 | Author: zgm | Hits:

[SCMos1

Description: 1用PCB表示整个进程实体,利用随机数方法或键盘控制方法模拟进程执行中产生的事件,或者利用基于图形界面的鼠标或者键盘操作控制进程管理内容。 2定义PCB(可以采用静态结构或动态结构):包括理论PCB中的基本内容,如内部ID、外部ID、进程状态、队列指针。由于无法实现真正的进程创建功能,在实验中只需建立PCB,用它代表完整的进程。 3定义进程状态转换方式:进程的状态转换是由进程内部操作或操作系统的控制引起,由于无法实现这些功能,学生可以采用随机数方法或键盘控制方法模拟,并实现对应的控制程序。随机方法指产生1-6的随机数,分别代表创建进程(c)、结束进程(e)、进程阻塞(b)、激活进程(w)、调度进程(p)、时间片到(t)等事件;键盘模拟方法指定义6种按键代表以上6种事件。 4根据事件处理就绪队列、阻塞队列和当前执行进程的状态。每次事件处理后应形象地显示出当前系统中的执行进程是哪一个,就绪队列和阻塞队列分别包含哪些进程。-1 with PCB said the process entities, using random method or the keyboard control method to simulate the process execution stressful events, or based on a graphical interface of the mouse or keyboard operation control process management content. 2 defined PCB (can use static structure or dynamic structure) : the basic content includes theory PCB, such as internal ID, external ID, process state, queue pointer. Unable to realize the real process creation function, in experiments create PCB, and use it to represent the complete process. 3 definition process state transition way: the state transition process by internal operation process of the operating system or control cause and, unable to achieve these functions, students can use random number or the keyboard control simulation method, and realize the corresponding control procedures. Randomized methods to produce 1-6 of random, and on behalf of the create process (c), terminate the process (e), process, obstruction (b), activation p
Platform: | Size: 1024 | Author: 若瓷 | Hits:

[OS programQQRobot-

Description: vc下键盘、鼠标的模拟适用,适用于初学者,简单而不失其功能-keyboard and mouse of windows which can be simulate by vc ,a very good example for the ABC learning
Platform: | Size: 142336 | Author: shen | Hits:

[Software Engineering98

Description: 1)编程思路:首先,本练习因为要制作模拟钢琴的实例,所以首先要生成程序界面:先通过语句Image m_ImgUp生成键盘、鼠标松开时显示的键盘图片,再通过语句Image m_ImgDown生成键盘、鼠标按下时显示的键盘图片,最后通过语句m_ImgUp=getImage(getDocumentBase(),"img/up.gif")和语句m_ImgDown=getImage(getDocumentBase(),"img/down.gif")加载图片,生成钢琴界面。然后,因为要实现模拟钢琴效果,所以要模拟声音的播放,首先通过语句AudioClip[] m_AudioClip=new AudioClip[14]生成一个音频对象的数组,保存七个中音和七个高音的声调,最后,通过函数public void keyPressed(KeyEvent e)来响应按下键盘的动作,实现声音的播放。-1) programming ideas: first, because to make examples of this exercise simulated piano, so we must first generate the program interface: first m_ImgUp generated when the keyboard, mouse, keyboard, display pictures by loosening the statement Image, then m_ImgDown generate keyboard and mouse through the statement Image Press keyboard display pictures, and finally through the statement m_ImgUp = getImage (getDocumentBase (), " img/up.gif" ) and statements m_ImgDown = getImage (getDocumentBase (), " img/down.gif" ) load images, generate piano interface. Then, because to achieve the effect of simulated piano, so to simulate the sound playback, first by the statement AudioClip [] m_AudioClip = new AudioClip [14] to generate an array of audio objects, saving seven midrange and treble tones of seven, and finally, By function public void keyPressed (KeyEvent e) in response to press the keyboard action, to achieve the sound.
Platform: | Size: 32768 | Author: 张飞 | Hits:

[androidjavapiano

Description: Java Piano模拟钢琴效果的完整源码,知识点:使用AudioClip类播放声音,使用Java MouseEvent类处理鼠标事件,使用Image类制作图片,使用Frame类制作界面框架。运行后创建一个带有模拟钢琴键盘的面板,用户可以通过键盘或者鼠标来“敲击”钢琴键盘发出声音,也可以通过电脑键盘的组合键实现钢琴的高音。   编程思路:首先制作模拟钢琴的实例,生成程序界面:先通过语句Image m_ImgUp生成键盘、鼠标松开时显示的键盘图片,再通过语句Image m_ImgDown生成键盘、鼠标按下时显示的键盘图片,最后通过语句m_ImgUp=getImage(getDocumentBase(),"img/up.gif")和语句m_ImgDown=getImage(getDocumentBase(),"img/down.gif")加载图片,生成钢琴界面。然后模拟钢琴效果,模拟声音的播放,首先通过语句AudioClip[] m_AudioClip=new AudioClip[14]生成一个音频对象的数组,保存七个中音和七个高音的声调,最后,通过函数public void keyPressed(KeyEvent e)来响应按下键盘的动作,实现声音的播放-Complete source Java Piano Piano effects simulation , knowledge: Use AudioClip class to play sounds , using Java MouseEvent class handles mouse events , use the Image class to create an image , using the Frame class production interface framework. Create a panel with a simulated piano keyboard after running, the user through the keyboard or mouse to " tap " sound piano keyboard , piano treble can also be achieved through a combination of computer keyboard keys . Programming ideas: first production examples simulate piano generating program interface : first m_ImgUp generated when the keyboard, mouse, keyboard, display pictures by loosening the statement Image, then m_ImgDown generated when the keyboard, mouse, keyboard, display pictures by pressing the statement Image, and finally through statement m_ImgUp = getImage (getDocumentBase (), "img/up.gif") and statements m_ImgDown = getImage (getDocumentBase (), "img/down.gif") load images , generate piano interface. Then the effect of sim
Platform: | Size: 32768 | Author: gpudn21 | Hits:

[OS programsimulator-mouse-and-keyboard

Description: 在Windows大行其道的今天,windows界面程序受到广大用户的欢迎。对这些程序的 操作不外乎两种,键盘输入控制和鼠标输入控制。有时,对于繁杂的,或重复性的输入 操作,我们能否通过编制程序来代替手工输入,而用程序来模拟键盘及鼠标的输入呢? 答案是肯定的。这里主要是通过两个Windows API函数来实现的。-In the Windows era, windows interface program by the majority of users are welcome. To these procedures The operation is nothing more than two kinds, the keyboard and mouse input control. Sometimes, for complex or repetitive input, Operation, we can process through the development to replace the manual input, and use the program to simulate the keyboard and mouse input? The answer is in the affirmative. Here is mainly realized by two Windows API function.
Platform: | Size: 30720 | Author: a | Hits:

[Game Hook CrackMosKeyHook

Description: 通过获得窗口 键盘钩子 使用Winio进行模拟按键 及鼠标移动(By accessing the window, the keyboard hook uses Winio to simulate keystrokes and mouse movements)
Platform: | Size: 147456 | Author: hqzzzz | Hits:

CodeBus www.codebus.net